/* ============================================================
     DESIGN TOKENS
  ============================================================ */
:root {
    --charcoal: #1a1815;
    --dark-wood: #231f1a;
    --panel: #252018;
    --panel-border: #3a3020;
    --brass: #b8912a;
    --brass-light: #d4ac45;
    --brass-dim: #7a5e1a;
    --gold: #c9a227;
    --gold-glow: #e8bc35;
    --cream: #e8dcc8;
    --fog: #8a7d6a;
    --navy: #0d1b2a;
    --rust: #6b3a2a;
    --text-main: #d4c8a8;
    --text-dim: #8a7d6a;
    --text-price: #c9a227;

    --font-display: "Cinzel Decorative", serif;
    --font-heading: "Cinzel", serif;
    --font-body: "EB Garamond", serif;

    --gutter: clamp(1rem, 4vw, 2.5rem);
    --radius: 4px;
    --transition: 0.35s ease;
}

/* ============================================================
     RESET & BASE
  ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--charcoal);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--brass-light);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--gold-glow);
}

img {
    display: block;
    max-width: 100%;
}

/* ============================================================
     NOISE TEXTURE OVERLAY
  ============================================================ */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* ============================================================
     NAV
  ============================================================ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(
        to bottom,
        rgba(26, 24, 21, 0.97) 0%,
        rgba(26, 24, 21, 0) 100%
    );
    padding: 1rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s;
}
#nav.scrolled {
    background: rgba(26, 24, 21, 0.97);
    border-bottom: 1px solid var(--panel-border);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--brass-light);
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-logo svg {
    width: 22px;
    height: 22px;
    fill: var(--brass);
}
.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.nav-links a:hover {
    color: var(--brass-light);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brass);
    transition: var(--transition);
}

@media (max-width: 680px) {
    .nav-links {
        display: none;
    }
    .nav-burger {
        display: flex;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(20, 18, 15, 0.98);
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 99;
    }
    .nav-links.open a {
        font-size: 1.1rem;
    }
}

/* ============================================================
     HERO
  ============================================================ */
#hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem var(--gutter) 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 50% 60%,
            rgba(184, 145, 42, 0.07) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 80% 60% at 50% 100%,
            rgba(13, 27, 42, 0.6) 0%,
            transparent 60%
        ),
        linear-gradient(180deg, #0d0c0a 0%, #1a1612 40%, #12100d 100%);
}

/* Animated lantern glow */
.hero-bg::after {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(184, 145, 42, 0.12) 0%,
        transparent 70%
    );
    animation: flicker 6s ease-in-out infinite;
}

@keyframes flicker {
    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    25% {
        opacity: 0.85;
        transform: translateX(-50%) scale(1.02);
    }
    50% {
        opacity: 0.95;
        transform: translateX(-50%) scale(0.98);
    }
    75% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.03);
    }
}

/* Rope dividers */
.rope-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--brass-dim) 15%,
        var(--brass) 50%,
        var(--brass-dim) 85%,
        transparent 100%
    );
    position: relative;
    margin: 1.5rem auto;
    max-width: 480px;
}
.rope-line::before,
.rope-line::after {
    content: "⊕";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brass);
    font-size: 0.7rem;
}
.rope-line::before {
    left: 12%;
}
.rope-line::after {
    right: 12%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* SVG Logo */
.hero-logo-svg {
    width: clamp(280px, 60vw, 480px);
    margin: 0 auto 0.5rem;
    animation: fadeUp 1.2s ease both;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-dim);
    animation: fadeUp 1.2s 0.2s ease both;
}

.hero-desc {
    margin: 2rem auto 0;
    max-width: 520px;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--cream);
    line-height: 1.9;
    font-style: italic;
    animation: fadeUp 1.2s 0.5s ease both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    padding: 0.75rem 2rem;
    border: 1px solid var(--brass);
    color: var(--brass-light);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all var(--transition);
    animation: fadeUp 1.2s 0.8s ease both;
}
.hero-cta:hover {
    background: var(--brass);
    color: var(--charcoal);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 1s 1.5s ease both;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brass-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
     SECTIONS COMMON
  ============================================================ */
section {
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--brass-dim);
    margin-bottom: 0.8rem;
    display: block;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    color: var(--brass-light);
    font-weight: 400;
    line-height: 1.2;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brass);
}

.section-rule {
    width: 80px;
    height: 1px;
    background: var(--brass-dim);
    margin: 1.2rem auto 0;
}

/* ============================================================
     ABOUT
  ============================================================ */
#about {
    background: var(--dark-wood);
    border-top: 1px solid var(--panel-border);
    border-bottom: 1px solid var(--panel-border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 680px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-text p {
    color: var(--cream);
    line-height: 1.95;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}
.about-text p:last-child {
    margin-bottom: 0;
}

.about-emblem {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-emblem svg {
    width: clamp(140px, 30vw, 220px);
    opacity: 0.5;
    fill: var(--brass-dim);
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}
.badge {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--brass-dim);
    color: var(--brass-dim);
    padding: 0.3rem 0.8rem;
}

/* ============================================================
     MENU
  ============================================================ */
#menu {
    background: var(--charcoal);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 3rem;
}
.menu-tab {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid var(--panel-border);
    color: var(--text-dim);
    cursor: pointer;
    background: none;
    transition: all var(--transition);
}
.menu-tab:hover,
.menu-tab.active {
    border-color: var(--brass);
    color: var(--brass-light);
    background: rgba(184, 145, 42, 0.08);
}

.menu-panels {
    max-width: 1100px;
    margin: 0 auto;
}

.menu-panel {
    display: none;
    animation: fadeUp 0.4s ease both;
}
.menu-panel.active {
    display: block;
}

.menu-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
}
.menu-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--brass-dim),
        transparent
    );
}

.menu-card-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--panel-border);
}
.menu-card-title .icon {
    font-size: 1rem;
    color: var(--brass);
}
.menu-card-title h3 {
    font-size: 0.85rem;
}

.menu-note {
    font-family: var(--font-heading);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-left: auto;
    text-transform: uppercase;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.55rem 0;
    border-bottom: 1px dotted rgba(58, 48, 32, 0.6);
}
.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-size: 0.95rem;
    color: var(--cream);
    flex: 1;
}
.item-price {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-price);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

/* ============================================================
     HOURS
  ============================================================ */
#hours {
    background: var(--dark-wood);
    border-top: 1px solid var(--panel-border);
    border-bottom: 1px solid var(--panel-border);
}

.hours-inner {
    max-width: 640px;
    margin: 0 auto;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.hours-row {
    display: contents;
}
.hours-day,
.hours-time {
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid var(--panel-border);
}
.hours-day {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    border-right: 1px solid var(--panel-border);
}
.hours-time {
    color: var(--cream);
    font-size: 0.95rem;
}
.hours-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-style: italic;
}

/* ============================================================
     LOCATION
  ============================================================ */
#location {
    background: var(--charcoal);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 980px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 720px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

.location-info h3 {
    margin-bottom: 1rem;
}

.location-detail {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: var(--cream);
    font-size: 0.95rem;
}
.location-detail .ico {
    color: var(--brass);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.directions-box {
    margin-top: 2rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid var(--panel-border);
    background: var(--panel);
    font-size: 0.9rem;
}
.directions-box p {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.directions-box strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass-dim);
    margin-bottom: 0.6rem;
}

.map-embed {
    width: 100%;
    aspect-ratio: 4/3;
    border: 1px solid var(--panel-border);
    background: var(--panel);
    overflow: hidden;
    position: relative;
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}

/* ============================================================
     FOOTER
  ============================================================ */
footer {
    background: #100f0d;
    border-top: 1px solid var(--panel-border);
    padding: 3rem var(--gutter);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--brass-dim);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.footer-socials a {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color var(--transition);
}
.footer-socials a:hover {
    color: var(--brass-light);
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.5;
}

/* ============================================================
     UTILITY
  ============================================================ */
.container {
    max-width: 1100px;
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
     DECORATIVE SVG WAVE DIVIDER
  ============================================================ */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-divider svg {
    display: block;
}
